home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / dark_brown_eyes.swf / scripts / frame_1 / DoAction.as
Text File  |  2007-09-26  |  617b  |  31 lines

  1. stop();
  2. Stage.showMenu = false;
  3. sounds = new Array();
  4. sounds = ["so0","so1","so2","so3","so4","so5"];
  5. var i = 0;
  6. while(i < sounds.length)
  7. {
  8.    _root[sounds[i]] = new Sound();
  9.    _root[sounds[i]].attachSound(sounds[i]);
  10.    i++;
  11. }
  12. so0.start(0,9999);
  13. pBar.mode = "polled";
  14. pBar.source = _root;
  15. cl = new Object();
  16. cl.complete = function()
  17. {
  18.    loading_flag = true;
  19. };
  20. pBar.addEventListener("complete",cl);
  21. var loading_flag = false;
  22. loading = setInterval(function()
  23. {
  24.    if(loading_flag and _root.loadingSequence == true)
  25.    {
  26.       gotoAndStop(2);
  27.       clearInterval(loading);
  28.    }
  29. }
  30. ,40);
  31.